home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / RAZZIA.Form < prev    next >
Text File  |  1994-07-29  |  271b  |  33 lines

  1. RAZZIA
  2. {
  3.     {
  4.         x1=-2.0
  5.         x2= 2.0
  6.         y1=-1.75
  7.         y2= 1.75
  8.         par1.r=0.3
  9.         par1.i=0.0
  10.         par2.r=3.0
  11.         par2.i=0.0
  12.         bailout=4.0
  13.     }
  14.     {
  15.         z=pixel
  16.     }
  17.     {
  18.         t=par1/z
  19.         u=z
  20.         z=pow(z,par2)
  21.         z=z-t
  22.         z=z+u
  23.         w=abs(z)
  24.     }
  25.     {
  26.         w>bailout
  27.     }
  28.     {
  29.         PAR1-Divisor for t
  30.         PAR2-Potenz of z
  31.     }
  32. }
  33.